home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcr / pcr4_4.lha / UTILITIES / makefile < prev    next >
Makefile  |  1988-11-03  |  423b  |  31 lines

  1. #
  2. # Simple makefile for the building of copyifdifferent and makescript
  3. #
  4. # AIshigo, November 1, 1988 3:29:50 pm PST
  5. #
  6.  
  7. notarget: copyifdifferent makescript
  8.  
  9. copyifdifferent: copyifdifferent.c
  10.     cc -o copyifdifferent copyifdifferent.c
  11.     
  12. makescript: makescript.c
  13.     cc -o makescript makescript.c
  14.     
  15. clean:
  16.     rm -f copyifdifferent
  17.     rm -f makescript
  18.     
  19. cleancopy:
  20.     rm -f copyifdifferent
  21.     
  22. cleanmakescript:
  23.     rm -f makescript
  24.     
  25.     
  26.  
  27.  
  28.  
  29.  
  30.  
  31.